home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE09 / TWAVE / UNIT2.PAS < prev    next >
Pascal/Delphi Source File  |  1996-03-28  |  522b  |  31 lines

  1. unit Unit2;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, ExtCtrls, Imagesnd, StdCtrls, Buttons, Sndbtn;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     SndBitBtn1: TSndBitBtn;
  12.     SndBitBtn2: TSndBitBtn;
  13.     SndBitBtn3: TSndBitBtn;
  14.     ImageSnd1: TImageSnd;
  15.     SndBitBtn4: TSndBitBtn;
  16.     Label1: TLabel;
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   Form1: TForm1;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. end.
  31.